home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Files / Errors / BadVolumeNameError.h < prev    next >
Text File  |  2000-06-23  |  312b  |  21 lines

  1. // BadVolumeNameError.h
  2.  
  3. #ifndef BadVolumeNameError_h
  4. #define BadVolumeNameError_h
  5.  
  6. #ifndef VolumeError_h
  7. #include "VolumeError.h"
  8. #endif
  9.  
  10. #include <Errors.h>
  11.  
  12. class BadVolumeNameError: public VolumeError
  13.   {
  14.     public:
  15.         BadVolumeNameError( OSErr error = bdNamErr )
  16.           : VolumeError( error )
  17.           {}
  18.   };
  19.  
  20. #endif
  21.